home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
workbench
/
tools
/
czesc_1
/
executive_v1.00
/
sysinfo.lzx
/
examples
/
test
/
Makefile
< prev
next >
Wrap
Makefile
|
1990-11-28
|
478b
|
34 lines
#
# MakeFile for sysinfo.library/test
#
# This file is public domain.
#
# Author: Petri Nordlund <petrin@mits.mdata.fi>
#
# $Id: MF.compile 1.1 1995/05/28 00:02:14 petrin Exp petrin $
#
CFLAGS = $(BUILD_GCC_OPT)
SHELL = USR:BIN/sh
# Source files
SRCS = test.c
# Object files
OBJS = $(SRCS:.c=.o)
PROG = test
all : $(PROG)
$(PROG) : test.o
gcc $(CFLAGS) -o $(PROG) $^ -lamiga -lauto -lsysinfo
test.o : test.c
gcc $(CFLAGS) -c test.c
clean:
-delete test test.o